POST
/
public
/
get-lab-details-bulk
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-lab-details-bulk \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "labIds": [
          "<string>"
        ]
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "labs": [
          {
            "labTitle": "<string>",
            "labDescriptionMarkdown": "<string>",
            "defaultGitRepositoryUrl": "<string>",
            "defaultGitRepositoryBranchName": "<string>",
            "evaluationScriptBashCommand": "<string>",
            "evaluationScriptTestFileContent": "<string>",
            "testCases": [
              {
                "testCaseId": "<string>",
                "type": "SelfEvaluative",
                "markdownLabel": "<string>",
                "markdownHint": "<string>"
              }
            ]
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

The body is of type object.

Response

200 - application/json

API Response Body

The response is of type object[].